encoding/hex.dumper.n (field)

6 uses

	encoding/hex (current package)
		hex.go#L233: 	n          uint // number of bytes, total
		hex.go#L256: 			h.buf[0] = byte(h.n >> 24)
		hex.go#L257: 			h.buf[1] = byte(h.n >> 16)
		hex.go#L258: 			h.buf[2] = byte(h.n >> 8)
		hex.go#L259: 			h.buf[3] = byte(h.n)
		hex.go#L289: 		h.n++